home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / CATALOGVIEW.DTML < prev    next >
Encoding:
Text File  |  2000-01-17  |  2.7 KB  |  90 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>View Catalog Records</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <dtml-var manage_tabs>
  8.  
  9. <dtml-if searchResults>
  10.  
  11. <p> Updating the catalog will update all catalog records and remove
  12. invalid records. Clearing the catalog will remove all entries.  You
  13. can also remove or update individual catalog records.
  14.  
  15.  
  16. <form action=".">
  17. <input type="submit" name="manage_catalogReindex:method" value=" Update Catalog ">
  18. <input type="submit" name="manage_catalogClear:method" value=" Clear Catalog ">
  19. </form>
  20.  
  21. <p>
  22.  
  23. <dtml-var id> contains
  24.  <em><dtml-var searchResults fmt=collection-length thousands_commas></em>
  25.  record(s).<BR><BR>
  26.  
  27.   <dtml-in searchResults previous size=20 start=query_start >
  28.     <a href="<dtml-var URL>?query_start=<dtml-var previous-sequence-start-number>">
  29.       [Previous <dtml-var previous-sequence-size> entries]
  30.     </a>
  31.   </dtml-in>
  32.   <dtml-in searchResults next size=20 start=query_start >
  33.     <a href="<dtml-var URL>?query_start=<dtml-var next-sequence-start-number>">
  34.       [Next <dtml-var next-sequence-size> entries]
  35.     </a>
  36.   </dtml-in>
  37.  
  38. <form action="<dtml-var URL1>">
  39. <input type="submit" value=" Remove " NAME="manage_uncatalogObject:method">
  40. <input type="submit" value=" Update " NAME="manage_catalogObject:method">
  41.  
  42. <input type="hidden" name="individual" value="1">
  43.   <table>
  44.     <dtml-in searchResults size=20 start=query_start >
  45.     <tr valign=top>
  46.       <td valign="middle" align="center">
  47.     <INPUT TYPE="checkbox" NAME="urls:list" VALUE="<dtml-var "getpath(data_record_id_)" html_quote>"
  48.       </TD>
  49.       <td valign="top"><dtml-var meta_type></td>
  50.       <td valign="top" align="left">
  51.         <a href="<dtml-var
  52.         "getpath(data_record_id_)" url_quote>/manage_workspace"><dtml-var "getpath(data_record_id_)">
  53.         <dtml-if title> (<dtml-var title>)</dtml-if></a>
  54.       </td> 
  55.     </tr>
  56.     </dtml-in>
  57.   </table>
  58.  
  59. <input type="submit" value=" Remove " NAME="manage_uncatalogObject:method">
  60. <input type="submit" value=" Update " NAME="manage_catalogObject:method">
  61.  
  62. </form>
  63.  
  64.   <dtml-in searchResults previous size=20 start=query_start >
  65.     <a href="<dtml-var URL>?query_start=<dtml-var previous-sequence-start-number>">
  66.       [Previous <dtml-var previous-sequence-size> entries]
  67.     </a>
  68.   </dtml-in>
  69.  
  70.   <dtml-in searchResults next size=20 start=query_start >
  71.     <a href="<dtml-var URL>?query_start=<dtml-var next-sequence-start-number>">
  72.       [Next <dtml-var next-sequence-size> entries]
  73.     </a>
  74.   </dtml-in>
  75.  
  76. <dtml-else>
  77.  
  78.  <P>There are no objects in the Catalog.</P>
  79.  
  80. </dtml-if>
  81.  
  82. </BODY>
  83. </HTML>
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.